home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / machserver / notes / mdrefs < prev    next >
Encoding:
Text File  |  1990-10-24  |  251 b   |  13 lines

  1. #! /bin/sh
  2. # Find machine-dependent references to the named module in the Sprite
  3. # sources. 
  4.  
  5. if [ $# != 1 ] ; then
  6.     echo "usage: mdrefs module_name"
  7.     exit 1
  8. fi
  9.  
  10. module=$1
  11.  
  12. aid $module | egrep "$module/(sun3|sun4|ds3100|symm).md" | grep -i "^$module"
  13.